home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
090
/
cmln1085.arc
/
LISTING2.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1986-02-27
|
2KB
|
35 lines
{.HE LISTING 2. Skeleton Program to Demonstrate Shell Inclusion.}
program skeleton;
{ put your CONST TYPE VAR sections here }
{ Select the modules you wish to include. Each one you select adds to
your total compile time, so include only the ones you need. GSXWORK.INC
must be included in any case where you wish to use GSX graphics from
TURBO. See the DEC GSX Programmer's Reference Manual, Table 1, or the
source code listings (Listing 1) to determine what each function does. }
{ _______ "I" here will produce listing of each file when TLIST is used }
{ / to list the source code. "i" will not list the included files }
{ / but only your procedures etc. (TLIST is Turbo-supplied) }
{ | }
{ V }
{$iB:GSXWORK.INC} { REQUIRED WORK STATION FUNCTIONS }
{$iB:GSXLINE.INC} { LINE DRAWING FUNCTIONS }
{$iB:GSXTEXT.INC} { TEXT DRAWING FUNCTIONS }
{$iB:GSXCOLOR.INC} { COLOR FUNCTIONS }
{$iB:GSXFILL.INC} { FILLED AREA FUNCTIONS }
{$iB:GSXMARK.INC} { POINT MARKING FUNCTIONS }
{$iB:GSXGDP.INC} { GENERALIZED DRAWING PRIMITIVE FUNCTIONS }
{$iB:GSXINPUT.INC} { INPUT FUNCTIONS }
{$iB:GSXWMODE.INC} { MODE CONTROL FUNCTIONS }
{$iB:GSXINQUI.INC} { STATUS INQUIRY FUNCTIONS }
{$iB:GSXESCAP.INC} { ESCAPE FUNCTIONS }
{ put your PROCEDURES and FUNCTIONS here }
BEGIN { ***************** main begins here ********************* }
END. { ***************** MAIN ENDS HERE ********************* }
{}